b7c5434b7a5a89accfecaef49a9d7c1ac911207d,Frameworks/Core/ERExtensions/Sources/er/extensions/appserver/navigation/ERXNavigationMenuItem.java,ERXNavigationMenuItem,contextComponentActionURL,#,98

Before Change


        // If the user specified an action or pageName, return the source URL
        if ((navigationItem().action() != null) || (navigationItem().pageName() != null)) {
            // Return the URL to the action or page placed in the context by invokeAction
            return context().componentActionURL();
        }
        if (navigationItem().directActionName() != null) {
        	if(_linkDirectlyToDirectActions) {

After Change


        }
        
        // If the user specified an action or pageName, return the source URL
        if (url == null && (navigationItem().action() != null) || (navigationItem().pageName() != null)) {
            // Return the URL to the action or page placed in the context by invokeAction
            url = context().componentActionURL();
        }
        if (url == null && navigationItem().directActionName() != null) {
        	if(_linkDirectlyToDirectActions) {